home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET
/
BCI NET Dec 94.iso
/
archives
/
programming
/
gui
/
precog.lzh
/
CheckBox.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-12-12
|
711b
|
32 lines
/* ==========================================================================
**
** CheckBox.h
**
** Object<GraphicObject<Interactor<Valuator<BoolGadget<CheckBox
**
** A 'CheckBox' is a gadget which toggles a check mark on and off.
**
** ©1991 WILLISoft
**
** ==========================================================================
*/
#ifndef CHECKBOX_H
#define CHECKBOX_H
#include "BoolGadget.h"
typedef BoolGadget CheckBox;
void CheckBox_Init( CheckBox *self,
PIXELS LeftEdge,
PIXELS TopEdge,
pcg_3DPens Pens,
char *Label,
BOOL Selected );
#endif